home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 71 / MOBICLIC 71.ISO / mac / DATA / COMMUN / temp0001 / 00212_Script_BOUCLE_SAUTE_LABEL < prev    next >
Text File  |  2004-12-05  |  536b  |  21 lines

  1. global gJLM_W, gze_Label
  2. property p_target
  3. ---------------------------
  4. on getPropertyDescriptionList
  5.   return [#p_target:[ #comment:"label de branchement:",#format:#string,#default: "ATTENTE"]]
  6. end getPropertyDescriptionList
  7. -------------------------
  8. on exitFrame me
  9.   if not(soundBusy(3)) then
  10.     niveauSon()
  11.     gze_Label = p_target
  12.     go label(p_target) + 1
  13.   end if
  14.   go the frame
  15. end
  16. ---------------------------
  17. on mouseUp
  18.   if the pauseState = 1 then exit
  19.   if gJLM_W > 0 then exit
  20. end
  21. ----------------------